home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.19980424-19980901 / 000110_news@newsmaster….columbia.edu _Fri May 22 09:43:58 1998.msg < prev    next >
Internet Message Format  |  1998-08-31  |  3KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id JAA06421
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Fri, 22 May 1998 09:43:57 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id JAA22240
  7.     for kermit.misc@watsun; Fri, 22 May 1998 09:43:56 -0400 (EDT)
  8. From: "Cathay Pacific" <cpa@cathaypacific.com>
  9. Subject: Script Problem on AIX 4.1.5
  10. Newsgroups: comp.protocols.kermit.misc
  11. Message-ID: <01bd8581$c02ea640$0c17110a@m000658.cathaypacific.com>
  12. X-Newsreader: Microsoft Internet News 4.70.1161
  13. NNTP-Posting-Host: 202.135.150.38
  14. Date: 22 May 1998 13:02:52 GMT
  15. X-Trace: 22 May 1998 13:02:52 GMT, 202.135.150.38
  16. Organization: IBM.NET
  17. Lines: 47
  18. X-Notice: Items posted that violate the IBM.NET Acceptable Use Policy
  19. X-Notice: or otherwise violate the IBM.NET Terms of Service
  20. X-Notice: should be forwarded in their entirety to postmaster@ibm.net
  21. Path: news.columbia.edu!newsfeed.nyu.edu!newsfeed.atl.bellsouth.net!cpk-news-hub1.bbnplanet.com!news.bbnplanet.com!newsfeed.internetmci.com!165.87.194.242!newsm2.ibm.net!ibm.net!news1.ibm.net!202.135.150.38
  22. Xref: news.columbia.edu comp.protocols.kermit.misc:8763
  23.  
  24. We were using AIX 3.2.5 plus kermit 5A with the script attached.  Recently,
  25. we have upgraded our AIX to 4.1.5 and use kermit 6.0.192.   We then try
  26. using manual input with the same steps inside the script and successed
  27. smoothly.   However, when we run it by 'kermit -y .kermrc',  the script
  28. hangs up after ATDT command.    By listening to the tone of the modem, we
  29. are sure that we have successfully connected to the remote host already.
  30.  
  31. I do not have any clue now, please help.
  32.  
  33. Many many thanks.. /Toby
  34.  
  35. Script  .kermrc  >>
  36. -------------------------------------------------------------
  37. set line /dev/tty3
  38. set input timeout-action quit
  39. set handshake none
  40. set parity none
  41. set speed 9600
  42. set duplex full
  43. set file type binary
  44. set flow rts/cts
  45. output AT\13
  46. input 10 OK
  47. output ATZ\13
  48. input 10 OK
  49. output ATDTnnnnnnn\13
  50. input 120 CONNECT
  51. clear
  52. output \13
  53. input 10 First Name:
  54. output service\13
  55. input 10 Last Name:
  56. output control\13
  57. input 5 (Y/N)?
  58. output Y
  59. input 10 Password:
  60. output mypassword\13
  61. input 10 Your Choice?
  62. output Download              
  63. input 10 Your choice?
  64. output Kermit               
  65. input 10 File name? 
  66. output myfilename\13
  67. receive /mnt/ascdev/ascs/myfilename
  68. input 10 Your Choice?
  69. output G
  70. quit